home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol06 / 03 / winedd / dprivate.h < prev    next >
Text File  |  1991-05-01  |  755b  |  20 lines

  1. /* ----------------------------- DPRIVATE.H --------------------------------
  2.                      Embedded Device Driver Application.
  3.  
  4.    ------------------------------------------------------------------------- */
  5.  
  6. /* Used to allow arguments to be reliably passed to the interrupt */
  7. /* handler if it is called directly from an application.          */
  8. #ifdef INTERRUPT_DEVICE
  9. #   define INTERRUPT_ATTRIBUTE  interrupt
  10. #else
  11. #   define INTERRUPT_ATTRIBUTE  cdecl
  12. #endif /* INTERRUPT_DEVICE */
  13.  
  14. /* The interrupt handler. */
  15. PUBLIC VOID FAR INTERRUPT_ATTRIBUTE INTHANDLER( unsigned , unsigned , unsigned ,
  16.     unsigned , unsigned , unsigned , unsigned , unsigned , unsigned ,
  17.     unsigned , unsigned , unsigned , unsigned );
  18.  
  19. /* EOF */
  20.